home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 2: CDPD 1 / Almathera Ten on Ten - Disc 2: CDPD 1.iso / pd / 051-075 / 051 / sq.usq / usq.h < prev    next >
Text File  |  1995-03-13  |  363b  |  14 lines

  1. #define LARGE 30000
  2.  
  3. /* Decoding tree */
  4. EXTERN struct {
  5.     int children[2];    /* left, right */
  6. } dnode[NUMVALS - 1];
  7.  
  8. EXTERN int bpos;    /* last bit position read */
  9. EXTERN int curin;    /* last byte value read */
  10.  
  11. /* Variables associated with repetition decoding */
  12. EXTERN int repct;    /*Number of times to retirn value*/
  13. EXTERN int value;    /*current byte value or EOF */
  14.